home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / core / UIComponentDescriptor.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  684 b   |  31 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public class UIComponentDescriptor extends ComponentDescriptor
  6.    {
  7.       mx_internal static const VERSION:String = "2.0.1.0";
  8.       
  9.       public var effects:Array;
  10.       
  11.       public var stylesFactory:Function;
  12.       
  13.       mx_internal var instanceIndices:Array;
  14.       
  15.       mx_internal var repeaters:Array;
  16.       
  17.       mx_internal var repeaterIndices:Array;
  18.       
  19.       public function UIComponentDescriptor(param1:Object)
  20.       {
  21.          super(param1);
  22.       }
  23.       
  24.       override public function toString() : String
  25.       {
  26.          return "UIComponentDescriptor_" + id;
  27.       }
  28.    }
  29. }
  30.  
  31.